home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-18 | 1.6 KB | 52 lines | [TEXT/MPS ] |
- #
- # Macintosh Developer Technical Support
- #
- # Simple Color QuickDraw Sample Application
- #
- # SillyBalls
- #
- # SillyBalls.make - Make Source
- #
- # Copyright © 1988 Apple Computer, Inc.
- # All rights reserved.
- #
- # Versions: 1.00 8/88
- # 1.01 6/92
- #
- # Components: SillyBalls.p August 1, 1988
- # SillyBalls.c August 1, 1988
- # PSillyBalls.make August 1, 1988
- # CSillyBalls.make August 1, 1988
- # TCSillyBalls.π June 4, 1992
- #
- # This is a very simple sample program that demonstrates how to use Color
- # QuickDraw. It is about two pages of code, and does nothing more than open
- # a color window and draw randomly colored ovals in the window.
- #
- # The purpose is to show how to get some initial results with Color QuickDraw.
- # It is a complete program and is very short to be as clear as possible.
- #
- # It does not have an Event Loop. It is not fully functional in the sense that
- # it does not do all the things you would expect a well behaved Macintosh
- # program to do, like size the window naturally, have an event loop, use menus,
- # etc.
- #
- # See Sample and TESample for the general structure and MultiFinder techniques that
- # we recommend that you use when building a new application.
- #
- # For MPW 2.0 we use the following line so that the the complete interfaces are there:
- # If you are using MPW 2.x or earlier, uncomment the following line:
- #COptions = -d __ALLNU__
- #
- # For MPW 3.0: define MPW3, turn on strict prototyping (-r option)
- COptions = -d MPW3 -r
-
-
- Objs = SillyBalls.c.o ∂
- "{Libraries}"Interface.o ∂
- "{Libraries}"Runtime.o
-
- CSillyBalls ƒ {Objs} CSillyBalls.make
- Link -o {Targ} {Objs}
- SetFile {Targ} -t APPL -c '????'
-